/* Section 1 - text */
.career-counseling {
  background: var(--text-light);
  padding: 80px 20px 40px;
  text-align: center;
}

.career-counseling .container {
  max-width: 1300px;
  margin: 0 auto;
}

.career-counseling h2 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.career-counseling h2 .blue { color: var(--primary-color); }
.career-counseling h2 .green { color: var(--highlight-color); }

.career-counseling p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--paragraph-color);
  padding-top: 15px;
}



.career-counseling .highlight {
  color: var(--highlight-color); /* or any color you prefer */
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif !important;
  font-size: 50px;
  font-weight: 700;
}




@media (max-width: 768px) {
  .career-counseling h2 {
    font-size: 32px;        /* 🔽 reduce heading size */
    line-height: 1.20;     /* 🔽 tighter line spacing */
    text-align: center;    /* optional – looks better on mobile */
  }

  .career-counseling h2 .highlight {
    font-size: 32px;       /* 🔽 reduce highlighted text */
    
  }
}





.btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--highlight-color);
  color: var(--text-light);
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.btn:hover { background: var(--highlight-colorhover); }

/* Section 2 - image */
.career-image-section {
  background: var(--text-light);
  padding: 40px 20px 80px;
  text-align: center;
}

.career-image-section .container {
  max-width: 1300px;
  margin: 0 auto;
}

.career-image-section img {
  width: 100%;
  max-width: 1300px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}



/* Section 3 - content */

/* Section Base */
.career-choices {
  padding: 20px 30px;
  background: var(--text-light);
}

.career-choices .container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

/* Green subheading */
/* .career-choices p {
  font-size: 16px;
  color: var(--paragraph-color);
  margin-bottom: 10px;
  font-family: mukta, serif ;
} */

.career-choices h3 {
  font-size: 16px;
  color: var(--highlight-color);
  font-family: mukta, sans-serif;
  margin-bottom: 10px;
  font-family: mukta, serif !important;
}

/* Main blue heading */
.career-choices h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Paragraph */
.career-choices p {
  max-width: 900px;
  
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: var(--paragraph-color);
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Responsive */
@media (max-width: 768px) {
  .career-choices h2 {
    font-size: 24px;
  }
  .career-choices p {
    font-size: 14px;
    padding: 0 15px;
  }
}






/* Career Services Section */
/* Career Services Section */
.career-services {
  padding: 60px 0;
  background: var(--text-light);
}

.career-services .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.card {
  background: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Image Styling */
.card img {
  width: 100%;
  max-height: 270px;      /* 👈 decrease image height */
  object-fit: cover;      /* crop neatly */
  border-bottom: 1px solid #eee;
}

/* Card Text */
.card h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 15px 20px 10px;
  color: var(--primary-color);
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.card p {
  
  line-height: 1.6;
  margin: 0 20px 20px;
}

/* Hover Effect */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card img {
    max-height: 120px;  /* smaller on mobile */
  }
}






/* CTA Section */
.cta-section {
  padding: 60px 20px;
  background: transparent;
}

.cta-section .container {
  max-width: 1300px;
  margin: 0 auto;
}

.cta-box {
  background: var(--highlight-color);   /* same green as your image */
  border-radius: 16px;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--text-light);
}

.cta-text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.cta-text p {
  color: var(--text-light) !important;
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
}

/* Button */
.cta-button .btn {
  display: inline-block;
  background: var(--text-light);
  color: var(--paragraph-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button .btn:hover {
  background: var(--text-light);
}

/* Responsive */
@media (max-width: 992px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .cta-text h2 {
    font-size: 26px;
  }

  .cta-text p {
    font-size: 15px;
  }

  .cta-button {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .cta-text h2 {
    font-size: 22px;
  }

  .cta-text p {
    font-size: 14px;
  }

  .cta-button .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}